home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr13 / aurora2c.zip / SYSTEM.AML < prev    next >
Text File  |  1995-04-07  |  2KB  |  77 lines

  1.  
  2. // ───────────────────────────────────────────────────────────────────
  3. // The Aurora Editor v2.0
  4. // Copyright 1993-1995 nuText Systems. All Rights Reserved Worldwide.
  5. //
  6. // System Settings (included by MAIN.AML)
  7. //
  8. // To change a setting, locate the desired setting in this file and
  9. // type in the new value. Character and string values should be
  10. // enclosed in quotes.
  11. //
  12. // When you are finished, save this file and select 'Recompile the
  13. // Editor' <alt f2> from the Set menu. Exit and re-enter the editor
  14. // for your changes to take effect.
  15. // ───────────────────────────────────────────────────────────────────
  16.  
  17.  
  18.   // disable the video blink mode (disabling the video blink mode
  19.   // allows the use of high intensity background colors)
  20.   blink OFF
  21.  
  22.   // set cursor size in insert and overstrike modes
  23.   cursorsize
  24.      // overstrike mode
  25.      80       // cursor top    (0-99)
  26.      90       // cursor bottom (0-99)
  27.  
  28.      // insert mode
  29.      50       // cursor top    (0-99)
  30.      90       // cursor bottom (0-99)
  31.  
  32.   // enable the enhanced keyboard
  33.   enhancedkbd ON
  34.  
  35.   // enable the PC speaker
  36.   speaker ON
  37.  
  38.   // date and time format
  39.   international
  40.      0         // date format
  41.                //   0=mmddyy
  42.                //   1=ddmmyy
  43.                //   2=yymmdd
  44.  
  45.     '-'        // date separator character
  46.  
  47.      0         // time format
  48.                //   0=12hr
  49.                //   1=24hr
  50.                //   2=12hr with seconds
  51.                //   3=24hr with seconds
  52.  
  53.     ':'        // time separator character
  54.  
  55.     ','        // thousands separator character
  56.                //   (null=no separator)
  57.  
  58.  
  59.  
  60.   // system memory settings
  61.  
  62.   maxxms      -1                  // maximum XMS memory (in k) to use:
  63.                                   //    0=none
  64.                                   //   -1=available maximum
  65.  
  66.   maxems      -1                  // maximum EMS memory (in k) to use:
  67.                                   //    0=none
  68.                                   //   -1=available maximum
  69.  
  70.   swapfiles                       // swap files:
  71.      "c:\\aurora@1.swp"           //   primary swap file
  72.      "d:\\aurora@2.swp"           //   secondary swap file
  73.  
  74.   memoptions  'o'                 // memory options:
  75.                                   //   o=allow open files
  76.  
  77.